home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Source / Resound / Module.h < prev    next >
Encoding:
Text File  |  1992-05-15  |  370 b   |  24 lines

  1.  
  2. /* 
  3. March 25, 1992
  4.  
  5. A Module Template.  Imports the appkit, soundkit, stdio, math, string, and
  6.    all program objects (see Module.m).  Includes an id for the
  7.    ModuleController.  Subclass from this to make modules.  See
  8.    ModuleController.h.
  9.    
  10. */
  11.  
  12.  
  13.  
  14. #import <objc/Object.h>
  15. #import "ModuleController.h"
  16.  
  17. @interface Module:Object
  18. {
  19.     id    TheModuleController;
  20. }
  21.  
  22.  
  23. @end
  24.